BR

[Encerrado] (Bug) Creat Account Via Xampp

Por BrunooMaciell, 20 de fev. de 2013 em Tópicos Sem Resposta

bug - dbo
resolvido
script
8
1.1k
BrunooMaciellB
20 de fevereiro de 2013 às 14:27

Estou com um bug na hora de criar account !!

 

Bug:

 

Notice: AutoSetup has attempted to create missing tables for you. This message should not repeat.

Error #1146

REPLACE INTO `nicaw_accounts` (`account_id`,`rlname`,`location`,`comment`,`recovery_key`) VALUES (9538656,NULL,NULL,NULL,NULL);

Table 'dbo-venetta.nicaw_accounts' doesn't exist

sql.php on line: 57

Script was terminated because something unexpected happened. You can report this, if you think it's a bug.

 

 

 

 

Obs: se alguem precisar de alguma script algo do tipo so avisar que eu edito aquie posto ^^

RoksasR
20 de fevereiro de 2013 às 14:34

Tente executar isso:

 

 

CREATE TABLE `nicaw_accounts` (

`account_id` int(10) unsigned NOT NULL,

`rlname` varchar(50) NULL,

`location` varchar(50) NULL,

`comment` tinytext NULL,

`recovery_key` char(32) NULL,

UNIQUE KEY `account_id` (`account_id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_account_logs` (

`id` int(10) unsigned NOT NULL auto_increment,

`account_id` int(11) NOT NULL,

`ip` int(11) NOT NULL,

`date` int(11) NOT NULL,

`action` varchar(255) NOT NULL,

UNIQUE KEY `id` (`id`),

KEY `account_id` (`account_id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_news` (

`id` int(10) unsigned NOT NULL auto_increment,

`title` varchar(64) NOT NULL,

`creator` varchar(25) NOT NULL,

`date` int(11) NOT NULL,

`text` text NOT NULL,

`html` tinyint(1) NOT NULL default '0',

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_polls` (

`id` int(10) unsigned NOT NULL auto_increment,

`question` varchar(255) NOT NULL,

`startdate` int(10) unsigned NOT NULL,

`enddate` int(10) unsigned NOT NULL,

`minlevel` int(10) unsigned NOT NULL,

`hidden` tinyint(1) NOT NULL default '0',

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_poll_options` (

`id` int(10) unsigned NOT NULL auto_increment,

`poll_id` int(10) unsigned NOT NULL,

`option` varchar(255) NOT NULL,

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_poll_votes` (

`option_id` int(10) unsigned NOT NULL,

`account_id` int(11) NOT NULL,

`ip` int(11) NOT NULL

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_guild_invites` (

`gid` int(10) unsigned NOT NULL COMMENT 'guild id',

`pid` int(10) unsigned NOT NULL COMMENT 'player id',

`rank` int(10) unsigned NOT NULL

) ENGINE = InnoDB;

 

CREATE TABLE `nicaw_guild_info` (

`id` int(10) unsigned NOT NULL COMMENT 'guild id',

`description` TINYTEXT NULL,

UNIQUE KEY `id` (`id`)

) ENGINE = InnoDB;

 

 

O banco de dados está tentando acessar as tabelas nicaw e não as encontram^^

BrunooMaciellB
20 de fevereiro de 2013 às 14:37

/\ mais em que lugar eu coloco isto ??

RoksasR
20 de fevereiro de 2013 às 14:41

Vá manualmente no phpmyadmin

no navegador digite localhost/phpmyadmin

lá, acesse seu banco de dados e lá em cima /\ clique em executar, cole o código e execute

BrunooMaciellB
20 de fevereiro de 2013 às 14:51

Pego ;D

 

Vlws novamente ^^

RoksasR
20 de fevereiro de 2013 às 14:53

Não há de quê, disponha!

 

Reportado para moverem.

20 de fevereiro de 2013 às 15:03

Tópico movido para a seção de dúvidas e pedidos resolvidos.

5 anos depois...
StigalS
21 de abril de 2018 às 02:41
A questão neste tópico de suporte foi encerrada por falta de respostas. Este tópico está fechado e foi movido para Suporte - Tópicos Sem Resposta.

+ Caso a dúvida não tenha sido resolvida você poderá criar outro tópico solicitando ajuda.
* Lembre-se que é permitido dar UP no tópico a cada 24 horas para assim o destacar e manter movimentado.